home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1997 April / PC Direct CD-ROM (April 1997).iso / FAXMAKER / DATA.3 / PROGRAMS / CLIENT32 / FMDDE.TXT < prev    next >
Encoding:
Text File  |  1996-01-01  |  1.3 KB  |  54 lines

  1. The DDE commands of the client are:
  2.  
  3. Connect with the following information:
  4.  
  5. APPLICATION:  FMCLIENT
  6. TOPIC:        SENDFAX
  7.  
  8.  
  9. Commands are (use DDEPoke):
  10.  
  11. : This adds a recipient to the recipient list
  12. ITEM:   ADD
  13. DATA:   to|company|faxnumber
  14.  
  15. e.g. ( in word basic )
  16. DDEPoke ( Channel, "ADD", "Andrei|GFI FAX & VOICE|(0356)661072" )
  17.  
  18. ---------------
  19.  
  20. : This sets the schedule time ( Current time + minutes specified )
  21. ITEM:   SCHEDULE
  22. DATA:   minutes
  23.  
  24. e.g. ( in word basic )
  25.  
  26. This sends the fax in one hour from now..
  27. DDEPoke ( Channel, "SCHEDULE", "60" )
  28.  
  29. This sends the fax in 10 minutes from now..
  30. DDEPoke ( Channel, "SCHEDULE", "10" )
  31.  
  32. This sends the fax in 124 minutes from now..
  33. DDEPoke ( Channel, "SCHEDULE", "124" )
  34.  
  35. ---------------
  36.  
  37. : This send the fax with the information it contains
  38. ITEM:   SEND
  39. DATA:   Two switches Send in highresolution and Send Cover page
  40.  
  41. e.g. ( in word basic )
  42.  
  43. This sends with a cover page and in high resolution
  44. DDEPoke ( Channel, "SEND", "00" )
  45.  
  46. This sends with a cover page and in normal resolution
  47. DDEPoke ( Channel, "SEND", "01" )
  48.  
  49. This sends without a cover page and in high resolution
  50. DDEPoke ( Channel, "SEND", "10" )
  51.  
  52. This sends without a cover page and in normal resolution
  53. DDEPoke ( Channel, "SEND", "00" )
  54.